diff options
| author | zephex-alt <[email protected]> | 2024-05-05 05:12:06 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-05 05:12:06 +0000 |
| commit | db8af9bda1d57061fa3f240c2be9bb8bc0b5f838 (patch) | |
| tree | 8970cdc8ecb8775cbdfc7782e00c9db151e5dff2 /src/app/anime/[id]/info.module.css | |
| parent | i guess I fixed it (diff) | |
| download | dramalama-db8af9bda1d57061fa3f240c2be9bb8bc0b5f838.tar.xz dramalama-db8af9bda1d57061fa3f240c2be9bb8bc0b5f838.zip | |
UI enhancement
Diffstat (limited to 'src/app/anime/[id]/info.module.css')
| -rw-r--r-- | src/app/anime/[id]/info.module.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/app/anime/[id]/info.module.css b/src/app/anime/[id]/info.module.css index e6d0af1..fd14d32 100644 --- a/src/app/anime/[id]/info.module.css +++ b/src/app/anime/[id]/info.module.css @@ -37,6 +37,25 @@ color: rgba(255, 255, 255, 0.637);
}
+.SelectClass {
+ background-color: #272727;
+ color: white;
+ font-family: "Lexend Deca", serif;
+ border: none;
+ outline: none;
+ padding: 0.5rem;
+ border-radius: 0.5rem;
+ text-align: center;
+}
+
+.SelectClass::-webkit-scrollbar {
+ width: 0;
+}
+
+.SelectClass option:checked {
+ background-color: rgb(0, 160, 223);
+}
+
.buttonContainer {
margin: 0px;
height: 200px;
@@ -72,7 +91,7 @@ .dramaButton {
padding: 10px;
font-family: "Lexend Deca", serif;
- margin: 5px 5px 5px 5px;
+ margin: 0.5rem 0.5rem 0px 0px;
width: 55px;
border-radius: 5px;
text-align: center;
@@ -161,4 +180,8 @@ .video {
width: 100%;
}
+
+ .buttonContainer {
+ text-align: center;
+ }
}
|